@font-face {
    font-family: 'American Captain';
    src: url('../fonts/American Captain.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MONTSERRAT-REGULAR.OTF');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MONTSERRAT-MEDIUM.OTF');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MONTSERRAT-SEMIBOLD.OTF');
    font-display: swap;
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MONTSERRAT-EXTRABOLD.OTF');
    font-display: swap;
    font-weight: 800;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/MONTSERRAT-BLACK.OTF');
    font-display: swap;
    font-weight: 900;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #000000;
}

.responsive-header{
    display: none;
}

*{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
}

@media (max-width: 991px) {
    #header{
        background-color: #1a1a1a !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        padding: 12px 0;
    }

    #header::after{
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, 
            transparent 0%, 
            transparent 5%, 
            #D4AF37 10%, 
            #D4AF37 90%, 
            transparent 95%, 
            transparent 100%);
    }

    #header .logo img{
        max-width: 120px;
        transition: all 0.3s ease;
    }

    #header.header-scrolled{
        background-color: rgba(26, 26, 26, 0.98) !important;
        backdrop-filter: blur(10px);
    }
}

.navbar-mobile{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.3s ease-out;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.navbar-mobile::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: -1;
}

.navbar-mobile::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 1px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.12) 1px, transparent 2px),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 2px);
    background-size: 220px 220px, 260px 260px, 240px 240px;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.navbar-mobile .mobile-nav-toggle{
    z-index: 1000;
    position: fixed;
    top: 20px;
    right: 20px;
}

.navbar a:hover, .navbar a.active, .navbar .active:focus, .navbar li:hover>a {
    color: #D4AF37;
}

.navbar ul li a{
    color: #5F3D3D;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.54px;
    transition: all 0.3s ease-in-out;
}

.navbar ul li a.active::before,
.navbar ul li a:hover::before {
    background-color: #D4AF37;
}

.navbar-mobile a:hover, .navbar-mobile a.active,
.navbar-mobile .active:focus, .navbar-mobile li:hover>a {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    transform: translateX(8px);
}

.navbar-mobile ul{
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 90%;
    margin: auto;
    animation: scaleIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.navbar-mobile ul::-webkit-scrollbar {
    width: 6px;
}

.navbar-mobile ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.navbar-mobile ul::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 10px;
}

.navbar-mobile ul::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.navbar-mobile ul li{
    margin-bottom: 8px;
    opacity: 0;
    animation: slideInNav 0.4s ease-out forwards;
}

.navbar-mobile ul li:nth-child(1){ animation-delay: 0.1s; }
.navbar-mobile ul li:nth-child(2){ animation-delay: 0.15s; }
.navbar-mobile ul li:nth-child(3){ animation-delay: 0.2s; }
.navbar-mobile ul li:nth-child(4){ animation-delay: 0.25s; }
.navbar-mobile ul li:nth-child(5){ animation-delay: 0.3s; }
.navbar-mobile ul li:nth-child(6){ animation-delay: 0.35s; }

@keyframes slideInNav {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-mobile ul li a{
    color: #FFFFFF !important;
    font-family: "Montserrat", sans-serif;
    font-size: 4vw !important;
    font-weight: 600;
    padding: 16px 24px !important;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.navbar-mobile ul li a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #FFDE6E 0%, #D29E30 100%);
    transition: height 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.navbar-mobile ul li a:hover::before,
.navbar-mobile ul li a.active::before{
    height: 70%;
}

.navbar-mobile ul li a.active{
    background: rgba(212, 175, 55, 0.15) !important;
    color: #D4AF37 !important;
}

.buy-ticket-btn{
    background-color: #F8667F;
    border-radius: 24px;
}

.get-started-btn:hover{
    color: #FFFFFF;
}

.bi-list{
    color: #FFFFFF;
    font-size: 32px;
    transition: all 0.3s ease;
}

.bi-list:hover{
    color: #D4AF37;
    transform: scale(1.1);
}

.mobile-nav-toggle.bi-x{
    color: #FFFFFF;
    font-size: 36px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.bi-x:hover{
    color: #D4AF37;
    transform: rotate(90deg);
}

.back-to-top{
    border-radius: 24px;
    /*background-color: #F8667F;*/
}

/*.back-to-top i{*/
/*    color: #FFFFFF;*/
/*}*/

/*.back-to-top i:hover, .back-to-top i:focus, .back-to-top i:active{*/
/*    color: #FFFFFF;*/
/*}*/

/*.back-to-top:hover, .back-to-top:focus, .back-to-top:active{*/
/*    background-color: #F8667F;*/
/*}*/

#footer{
    z-index: 99;
}

#footer span{
    font-family: "Montserrat", serif;
    z-index: 99;
}

#footer.gc-footer{
    background: #1a1a1a;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
}

#footer.gc-footer::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.14) 1px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.10) 1px, transparent 2px),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 2px);
    background-size: 220px 220px, 260px 260px, 240px 240px;
    opacity: 0.6;
    pointer-events: none;
}

/* Desktop Footer */
.gc-footer-desktop-view .gc-footer-main{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

.gc-footer-desktop-view .gc-footer-logo{
    flex-shrink: 0;
}

.gc-footer-desktop-view .gc-footer-logo img{
    height: auto;
    width: 150px;
    display: block;
}

.gc-footer-desktop-view .gc-footer-info-desktop{
    flex: 1;
    text-align: left;
}

.gc-footer-desktop-view .gc-footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.gc-footer-desktop-view .gc-footer-links a,
.gc-footer-desktop-view .gc-footer-links .gc-footer-link{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
}

.gc-footer-desktop-view .gc-footer-links a:hover,
.gc-footer-desktop-view .gc-footer-links .gc-footer-link:hover{
    color: #D4AF37;
}
/* Tickets Terms & Conditions modal */
.terms-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.terms-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.terms-modal {
    background: #fff7f9;
    border-radius: 20px;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    font-family: "Montserrat", sans-serif;
    color: #5F3D3D;
    position: relative;
    padding: 32px 36px 40px;
}

.terms-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.terms-modal-title {
    font-size: 1.3vw;
    font-weight: 700;
    margin-bottom: 12px;
    color: #5F3D3D;
}

.terms-modal-header p{
    font-size: 0.7vw;
}

.terms-modal-body {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
    line-height: 1.6;
    font-weight: 500;
    font-size: 0.7vw;
}

.terms-modal-body ul {
    padding-left: 18px;
    margin-bottom: 0;
    list-style: disc;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.terms-modal-body li::marker {
    color: #5F3D3D;
}

.terms-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 32px;
    color: #5F3D3D;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.terms-modal-close:hover {
    transform: scale(1.1);
    color: #F8667F;
}

.terms-modal-footer {
    margin-top: 24px;
    text-align: center;
}

.terms-modal-btn {
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    color: #fff;
    font-weight: 500;
    padding: 12px 36px;
    cursor: pointer;
    /* box-shadow: 0 10px 25px rgba(240, 93, 120, 0.35); */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.terms-modal-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 14px 30px #FFDE6E; */
}

@media (max-width: 575px) {
    .terms-modal {
        padding: 28px 20px 32px;
    }

    .terms-modal-title {
        font-size: 4vw;
    }
}

.gc-footer-separator{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 1vw;
    margin: 0 8px;
}

.gc-footer-desktop-view .gc-footer-social{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 20%;
}

.gc-footer-desktop-view .gc-footer-social-title{
    color: #FFFFFF;
    font-family: "American Captain", sans-serif;
    font-size: 1.5vw;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gc-footer-desktop-view .gc-footer-social-icons{
    display: flex;
    gap: 12px;
    align-items: center;
}

.gc-footer-desktop-view .gc-footer-social-icons a{
    display: block;
    transition: transform 0.3s ease;
}

.gc-footer-desktop-view .gc-footer-social-icons a:hover{
    transform: scale(1.1);
}

.gc-footer-desktop-view .gc-footer-social-icons img{
    width: 50px;
    height: 50px;
    display: block;
}

.gc-footer-desktop-view .gc-footer-social-text{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9vw;
    font-weight: 400;
    text-align: center;
}

.gc-footer-desktop-view .gc-footer-company-info-desktop{
    margin-bottom: 8px;
}

.gc-footer-desktop-view .gc-footer-company-name{
    color: #D4AF37;
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "American Captain", sans-serif;
    font-size: 1.1vw;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.7px;
}

.gc-footer-desktop-view .gc-footer-company-details{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85vw;
    font-weight: 400;
    line-height: 1.6;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.gc-footer-desktop-view .gc-footer-company-reg,
.gc-footer-desktop-view .gc-footer-company-phone,
.gc-footer-desktop-view .gc-footer-company-address{
    display: inline;
}

.gc-footer-desktop-view span.gc-footer-company-reg{
    font-size: 0.7vw;
}

.gc-footer-desktop-view .gc-footer-company-phone a{
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gc-footer-desktop-view .gc-footer-company-phone a:hover{
    color: #D4AF37;
}

.gc-footer-desktop-view .gc-footer-info-desktop .gc-footer-text{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 0.85vw;
    line-height: 1.2;
    font-weight: 400;
}

.gc-footer-mobile-view{
    padding: 0 !important;
}

.gc-footer-mobile-view .gc-footer-social-section{
    background: linear-gradient(135deg, #77282D 0%, #5C2225 32%, #421C20 65%, #201C19 100%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.gc-footer-mobile-view .gc-footer-social-section::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70px;
    background: linear-gradient(
        to bottom,
        rgba(32, 28, 25, 0) 0%,
        rgba(32, 28, 25, 0.65) 65%,
        rgba(26, 26, 26, 1) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.gc-footer-mobile-view .gc-footer-social-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.06) 1px, transparent 2px),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 2px);
    background-size: 220px 220px, 260px 260px, 240px 240px;
    opacity: 0.6;
    pointer-events: none;
}

.gc-footer-mobile-view .gc-footer-social-title{
    color: #FFFFFF;
    font-family: "American Captain", sans-serif;
    font-size: 6vw;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.gc-footer-mobile-view .gc-footer-social-icons{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.gc-footer-mobile-view .gc-footer-social-icons a{
    display: block;
    transition: transform 0.3s ease;
}

.gc-footer-mobile-view .gc-footer-social-icons a:hover{
    transform: scale(1.1);
}

.gc-footer-mobile-view .gc-footer-social-icons img{
    width: 75%;
}

.gc-footer-mobile-view .gc-footer-social-text{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gc-footer-mobile-view .gc-footer-links-mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 30px 0px 0;
}

.gc-footer-mobile-view .gc-footer-links-mobile a,
.gc-footer-mobile-view .gc-footer-links-mobile .gc-footer-link{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
}

.gc-footer-mobile-view .gc-footer-links-mobile a:hover,
.gc-footer-mobile-view .gc-footer-links-mobile .gc-footer-link:hover{
    color: #D4AF37;
}

.gc-footer-mobile-view .gc-footer-links-mobile .gc-footer-separator{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    margin: 0 8px;
}

.gc-footer-mobile-view .gc-footer-bottom-mobile{
    padding: 20px 20px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gc-footer-mobile-view .gc-footer-bottom-mobile .gc-footer-logo{
    flex-shrink: 0;
    align-self: center;
}

.gc-footer-mobile-view .gc-footer-bottom-mobile .gc-footer-logo img{
    height: 60px;
    width: auto;
}

.gc-footer-mobile-view .gc-footer-info-mobile{
    flex: 1;
    text-align: left;
}

.gc-footer-mobile-view .gc-footer-company-info-mobile{
    margin-bottom: 12px;
}

.gc-footer-mobile-view .gc-footer-company-name{
    color: #D4AF37;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.gc-footer-mobile-view .gc-footer-company-details{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
}

.gc-footer-mobile-view .gc-footer-company-reg,
.gc-footer-mobile-view .gc-footer-company-phone,
.gc-footer-mobile-view .gc-footer-company-address{
    margin-bottom: 6px;
}

.gc-footer-mobile-view span.gc-footer-company-reg{
    font-size: 2vw;
}

.gc-footer-mobile-view .gc-footer-company-phone a{
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gc-footer-mobile-view .gc-footer-company-phone a:hover{
    color: #D4AF37;
}

.gc-footer-mobile-view .gc-footer-info-mobile .gc-footer-text{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 767.98px){
    .gc-footer-desktop-view{
        display: none;
    }

    .gc-footer-mobile-view{
        display: block;
    }

    .grab-footer-desktop{
        display: none;
    }

    .grab-footer-mobile{
        display: block;
    }
}

@media (min-width: 768px){
    .gc-footer-desktop-view{
        display: block;
    }

    .gc-footer-mobile-view{
        display: none;
    }

    .grab-footer-desktop{
        display: block;
    }

    .grab-footer-mobile{
        display: none;
    }
}

.copyright-row{
    padding: 10px 0;
}

.footer-links h4{
    font-size: 30px;
}

#bannerModal .carousel-indicators [data-bs-target]{
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

#bannerModal .modal-content{
    border-radius: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    #footer{
        padding-top: 30px;
    }
}

@media (min-width: 1400px) {
    #footer{
        padding-top: 20px;
    }
}

@media (min-width: 1690px) {
    #footer{
        padding-top: 70px;
    }
}

.tnc{
    cursor: pointer;
}

/*HERO*/

#hero {
    /* background: #0b0b0b; */
    position: relative;
    overflow: hidden;
    /* padding-top: 120px; */
    padding-bottom: 0px;
    min-height: 100vh;
    margin: 0;
}

#hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.35) 1px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.28) 1px, transparent 2px),
        radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.10) 1px, transparent 2px);
    background-size: 220px 220px, 260px 260px, 240px 240px;
    opacity: 0.55;
    pointer-events: none;
}

.gc-hero{
    position: relative;
    z-index: 1;
    padding: 0;
}

.gc-hero > .row{
    min-height: 80vh;
    min-width: none;
}

.gc-hero-left{
    text-align: center;
}

.gc-hero-title img{
    width: 75%;
    height: auto;
    display: block;
    margin-bottom: 18px;
    margin: auto;
    padding: ;
}

.gc-hero-subtitle{
    color: #D4AF37;
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "American Captain", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.1vw;
    margin-bottom: 14px;
}

.gc-hero-subtitle span{
    font-family: "American Captain", sans-serif;
    font-size: 1.8vw;
    display: block;
    line-height: 1.05;
    margin-top: -0.15em;
}

.about-hero-meta{
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2vw;
    font-weight: 300;
    letter-spacing: 0.1vw;
    margin-bottom: 24px;
}

.gc-hero-meta{
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
    margin-bottom: 24px;
}

.gc-hero-venue, .gc-hero-venue span{
    color: #ffffff;
    font-family: "American Captain", sans-serif;
    font-size: 2vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
    margin: 24px 0;
    line-height: 1.05;
}

.gc-hero-dot{
    margin: 0 10px;
    color: #D29E30;
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    vertical-align: sub;
}

.gc-hero-cta{
    display: flex;
    gap: 16px;
    /* flex-wrap: wrap; */
    /* margin: 10px 60px; */
}

.gc-hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3vw;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.gc-hero-btn-primary{
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    color: #0b0b0b;
    border: 1px solid #D4AF37;
}

.gc-hero-btn-primary:hover{
    opacity: 0.9;
    color: #0b0b0b;
}

.gc-hero-btn-outline{
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.9);
}

.gc-hero-btn-outline:hover{
    background: rgba(212, 175, 55, 0.12);
    color: #ffffff;
}

.gc-hero-right{
    text-align: right;
}

.gc-hero-mascot{
    max-width: 420px;
    width: 100%;
    height: auto;
    display: inline-block;
}

@media (min-width: 992px){
    .gc-hero-left{
        display: flex;
        align-items: center;
        justify-content: end;
        min-height: 100vh;
    }

    .gc-hero-right{
        position: relative;
        min-height: 100vh;
        overflow: hidden;
    }

    .gc-hero-right::after{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to right, #160E09 0%, rgba(11, 11, 11, 0) 25%);
        pointer-events: none;
    }

    .gc-hero-mascot{
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: fill;
        object-position: right center;
        z-index: 0;
        display: block;
        margin: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px){
    
    #hero{
        min-height: 60vh;
    }

    .gc-hero > .row{
        min-height: 60vh;
    }

    .gc-hero-left{
        min-height: 60vh;
    }

    .gc-hero-title img{
        max-width: 100%;
    }

    .gc-hero-subtitle{
        font-size: 4vw;
    }

    .gc-hero-right{
        min-height: 60vh;
    }
    .gc-hero-left{
        flex: 0 0 60%;
        max-width: 60%;
    }

    .gc-hero-right{
        flex: 0 0 40%;
        max-width: 40%;
    }

    .gc-hero-mascot{
        object-fit: contain;
        object-position: right center;
    }
}

@media (max-width: 767.98px){
    .gc-hero-left{
        text-align: center;
    }

    .gc-hero-title img{
        margin-left: auto;
        margin-right: auto;
    }

    .gc-hero-cta{
        justify-content: center;
    }

    .gc-hero-right{
        text-align: center;
        margin-top: 28px;
    }

    .gc-hero-mascot{
        max-width: 320px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px){
    #hero{
        min-height: 60vh;
    }

    .gc-hero > .row{
        min-height: 60vh;
    }

    .gc-hero-left{
        display: flex;
        align-items: center;
        justify-content: end;
        min-height: 60vh;
        text-align: center;
    }

    .gc-hero-title img{
        max-width: 100%;
    }

    .gc-hero-subtitle{
        font-size: 3vw;
    }

    .gc-hero-meta{
        font-size: 1.6vw;
    }

    .gc-hero-cta{
        margin: 10px 24px;
    }

    .gc-hero-btn{
        font-size: 1.8vw;
    }

    .gc-hero-right{
        position: relative;
        min-height: 60vh;
        overflow: hidden;
    }

    .gc-hero-right::after{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to right, rgba(22, 14, 9, 1) 0%, rgba(22, 14, 9, 0) 20%);
        pointer-events: none;
    }

    .gc-hero-mascot{
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: contain;
        object-position: right center;
        z-index: 0;
        display: block;
    }
}

/*ABOUT HERO*/

#about-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
    min-height: 100vh;
    margin: 0;
    background-image: url('../img/about/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#about-hero-mobile {
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
    min-height: auto;
    margin: 0;
    background-image: url('../img/about/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#about-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.35) 1px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.28) 1px, transparent 2px),
        radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.10) 1px, transparent 2px);
    background-size: 220px 220px, 260px 260px, 240px 240px;
    opacity: 0.55;
    pointer-events: none;
}

.gc-about-hero{
    position: relative;
    z-index: 1;
    padding: 0;
}

.gc-about-hero > .row{
    min-height: 80vh;
    min-width: none;
}

.gc-about-hero-left{
    text-align: center;
}

.gc-about-hero-title img{
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 18px;
    margin: auto;
}

.gc-about-hero-subtitle{
    color: #D4AF37;
    font-family: "American Captain", sans-serif;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1vw;
    margin-bottom: 14px;
}

.gc-about-hero-meta{
    color: rgba(255, 255, 255, 0.85);
    font-family: "Montserrat", sans-serif;
    font-size: 1.2vw;
    font-weight: 500;
    letter-spacing: 0.2vw;
    margin-bottom: 24px;
    line-height: 1.2em;
}

.gc-about-hero-dot{
    margin: 0 10px;
    color: #D29E30;
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    vertical-align: sub;
}

.gc-about-hero-cta{
    display: flex;
    gap: 16px;
}

.gc-about-hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3vw;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.gc-about-hero-btn-primary{
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    color: #0b0b0b;
    border: 1px solid #D4AF37;
}

.gc-about-hero-btn-primary:hover{
    opacity: 0.9;
    color: #0b0b0b;
}

.gc-about-hero-btn-outline{
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.9);
}

.gc-about-hero-btn-outline:hover{
    background: rgba(212, 175, 55, 0.12);
    color: #ffffff;
}

.gc-about-hero-right{
    text-align: right;
}

.gc-about-hero-mascot{
    max-width: 420px;
    width: 100%;
    height: auto;
    display: inline-block;
    margin: auto;
}

.gc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  background: linear-gradient(180deg,#f8d26b 0%,#c98b21 55%,#f9d779 100%);
  position: relative;
  color: #2a1a07;
  font-family: 'Baron Neue', sans-serif;
  letter-spacing: 0.1em;
  clip-path: polygon(
    40px 0%, 
    calc(100% - 40px) 0%, 
    100% 50%, 
    calc(100% - 40px) 100%, 
    40px 100%, 
    0% 50%
  );
  margin: 0 auto;
}

.gc-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  clip-path: polygon(
    40px 0%, 
    calc(100% - 40px) 0%, 
    100% 50%, 
    calc(100% - 40px) 100%, 
    40px 100%, 
    0% 50%
  );
  box-shadow:
    inset 0 3px 8px rgba(255,255,255,0.4),
    inset 0 -4px 8px rgba(0,0,0,0.35),
    inset 0 0 0 3px #4a2b00,
    0 4px 15px rgba(0,0,0,0.3),
    0 0 25px rgba(255,186,66,0.4);
  pointer-events: none;
}

.gc-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 240px);
  height: 2px;
  background: 
    linear-gradient(90deg, 
      rgba(255,201,92,0) 0%, 
      rgba(255,201,92,0.8) 120px, 
      rgba(255,201,92,0) 120px,
      rgba(255,201,92,0) calc(100% - 120px),
      rgba(255,201,92,0.8) calc(100% - 120px),
      rgba(255,201,92,0) 100%
    );
  pointer-events: none;
  z-index: -1;
}

.gc-badge-img {
  /* max-width: 600px; */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .gc-badge-img {
    /* max-width: 90%; */
  }
}

@media (min-width: 992px){
    .gc-about-hero-left{
        display: flex;
        align-items: center;
        justify-content: end;
        min-height: 100vh;
    }

    .gc-about-hero-right{
        position: relative;
        min-height: 100vh;
        overflow: hidden;
    }

    .gc-about-hero-right::after{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to right, #160E09 0%, rgba(11, 11, 11, 0) 25%);
        pointer-events: none;
    }

    .gc-about-hero-mascot{
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: fill;
        object-position: right center;
        z-index: 0;
        display: block;
        margin: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px){
    
    #about-hero{
        min-height: 60vh;
    }

    .gc-about-hero > .row{
        min-height: 60vh;
    }

    .gc-about-hero-left{
        min-height: 60vh;
    }

    .gc-about-hero-title img{
        max-width: 100%;
    }

    .gc-about-hero-subtitle{
        font-size: 3vw;
    }

    .gc-about-hero-right{
        min-height: 60vh;
    }
    .gc-about-hero-left{
        flex: 0 0 60%;
        max-width: 60%;
    }

    .gc-about-hero-right{
        flex: 0 0 40%;
        max-width: 40%;
    }

    .gc-about-hero-mascot{
        object-fit: contain;
        object-position: right center;
    }
}

@media (max-width: 767.98px){
    .gc-about-hero-left{
        text-align: center;
    }

    .gc-about-hero-title img{
        margin-left: auto;
        margin-right: auto;
    }

    .gc-about-hero-cta{
        justify-content: center;
    }

    .gc-about-hero-right{
        text-align: center;
        margin-top: 28px;
    }

    .gc-about-hero-mascot{
        max-width: 320px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px){
    #desktop-about-hero, #mobile-about-hero{
        min-height: 60vh;
    }

    .desktop-gc-about-hero > .row, .mobile-gc-about-hero > .row{
        min-height: 60vh;
    }

    .desktop-gc-about-hero-left, .mobile-gc-about-hero-left{
        display: flex;
        align-items: center;
        justify-content: end;
        min-height: 60vh;
        text-align: center;
    }

    .desktop-gc-about-hero-title img, .mobile-gc-about-hero-title img{
        max-width: 100%;
    }

    .desktop-gc-about-hero-subtitle, .mobile-gc-about-hero-subtitle{
        font-size: 3vw;
    }

    .desktop-gc-about-hero-meta, .mobile-gc-about-hero-meta{
        font-size: 1.6vw;
    }

    .desktop-gc-about-hero-cta, .mobile-gc-about-hero-cta{
        margin: 10px 24px;
    }

    .desktop-gc-about-hero-btn, .mobile-gc-about-hero-btn{
        font-size: 1.8vw;
    }

    .desktop-gc-about-hero-right, .mobile-gc-about-hero-right{
        position: relative;
        min-height: 60vh;
        overflow: hidden;
    }

    .desktop-gc-about-hero-right::after, .mobile-gc-about-hero-right::after{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to right, rgba(22, 14, 9, 1) 0%, rgba(22, 14, 9, 0) 20%);
        pointer-events: none;
    }

    .desktop-gc-about-hero-mascot, .mobile-gc-about-hero-mascot{
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        max-width: none;
        object-fit: contain;
        object-position: right center;
        z-index: 0;
        display: block;
        margin: auto;
    }
}

.left-clouds, .right-cloud{
    position: absolute;
}

.left-clouds img:first-child{
    transform: translate(-25%, 15%);
}

.left-clouds img:nth-child(2){
    z-index: 99;
    transform: translate(-145%, 75%);
}

.right-cloud img{
    transform: translate(110%, 25%);
}

#event-date{
    padding-top: 30px !important;
}

.date{
    color: #5F3D3D;
    text-align: center;
    font-family: "American Captain", sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.date-suffix{
    vertical-align: super;
    font-size: 30px;
    font-weight: normal;
}

.hyphen {
    margin: 0 20px;
}

.hyphen img{
    width: 6%;
}

.location-container{
    border-radius: 60px;
    border: 3px solid rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.30);
    padding: 30px 75px;
    width: fit-content;
}

.location-container span{
    color: #5F3D3D;
    text-align: center;
    font-family: "American Captain", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.img img{
    width: 80%;
}

#candy-container img{
    position: absolute;
    width: 115px;
    transform: translate(-50%, 0%);
    z-index: 99;
}

#donut-container img{
    position: absolute;
    width: 115px;
    transform: translate(-50%, 0%);
    z-index: 99;
}

/*EXPLORE*/

#explore{
    background: linear-gradient(0deg, #FFEFF5 0%, #FDEBF2 44.27%, #EAB8CA 100%);;
    padding: 0;
}

.kv-container img{
    width: 100%;
}

.explore-activity-container{
    width: 100%;
}

/*.explore-activity-container .container:nth-child(2){*/
/*    padding-top: 75px;*/
/*}*/

.title-font{
    color: #AF3247;
    text-align: center;
    font-family: "American Captain", sans-serif;
    font-size: 5vw;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    z-index: 100;
    margin-bottom: 50px;
    letter-spacing: 0.1vw !important;
}

.font1{
    margin-bottom: 70px;
}

.explore-desc{
    color: #5F3D3D;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 100px;
    z-index: 100;
}

.content-container{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
}

.content-container .col{
    text-align: center;
}

.games-content-container{
    margin-top: 100px;
    padding: 70px 24px 20px 24px;
}

.ie-content-container{
    padding: 110px 24px 30px 24px;
}

.workshop-content-container{
    margin-top: 100px;
    padding: 100px 24px 30px 24px;
}

.zone-content-container{
    padding: 110px 24px 30px 24px;
}

.content-container span{
    text-align: center;
}

.content-title{
    color: #F8667F;
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.content-container .content-desc{
    color: #5F3D3D;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.content-container img{
    position: absolute;
    transform: translate(-50%, -100%);
}

.games-img{
    width: 150px;
}

.immersive-exp-img{
    width: 150px;
}

.workshop-img{
    width: 160px;
}

.zone-img{
    width: 160px;
}

/*GET HERE*/

#get-here{
    background: url("../img/get-here-bg.png") center center no-repeat;
    background-size: cover;
    padding-bottom: 80px;
    padding-top: 60px;
}

.font2{
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.2vw;
}

.brands-container{
    margin-top: 50px;
}

.brand-item{
    /* margin-bottom: 40px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}

.brand-circle{
    /* width: 150px;
    height: 150px; */
    border-radius: 50%;
    /* background: linear-gradient(135deg, #F4D03F 0%, #E8C547 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    /* box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); */
    transition: transform 0.3s ease;
}

.brand-circle:hover{
    transform: scale(1.05);
}

.brand-circle img{
    /* width: 100px;
    height: 100px;
    object-fit: contain; */
}

.brand-row{
    flex-wrap: nowrap !important;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.brand-row::-webkit-scrollbar{
    height: 6px;
}

.brand-row::-webkit-scrollbar-thumb{
    background: rgba(212, 175, 55, 0.4);
    border-radius: 999px;
}

.brand-row::-webkit-scrollbar-track{
    background: transparent;
}

.brand-row .brand-item{
    flex: 0 0 auto;
}

.brand-row-mobile{
    gap: 0.2rem;
    padding-bottom: 0.5rem;
}

.brand-circle-mobile{
    min-width: 30px;
}

.brand-name{
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2vw;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text{
    color: #83650E;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 33px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.sponsor-container{
    padding: 30px 0 50px 0;
}

.mobile-sponsors-logo{
    width: 90%;
}

@media (max-width: 768px) {
    #get-here{
        padding-bottom: 60px;
        padding-top: 50px;
    }
    
    .font2{
        font-size: 20px;
        font-weight: 900;
        letter-spacing: 0.2vw;
    }
    
    .brands-container{
        margin-top: 40px;
    }
    
    .brand-item{
        /* margin-bottom: 35px; */
    }
    
    .brand-name{
        font-size: 4vw;
        font-weight: 700;
        letter-spacing: 0.2vw;
    }
}



/*PRICING*/
 #pricing{
     background: url('../img/faq-bg.png') center center / cover no-repeat;
     padding-bottom: 80px;
     padding-top: 0;
     height: fit-content;
 }

.font3{
    color: #503BAB;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%; /* 57.2px */
}

.pricing-content-container{
    padding: 24px 28px 10px 28px;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
}

.ticket-type{
    color: #5F3D3D;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
    align-items: center;
}

.age-range{
    color: #9F8B8B;
    font-size: 18px;
    font-style: normal;
    font-family: "Montserrat", sans-serif;
    line-height: normal;
}

.early-bird-promo{
    color: #F8667F;
    text-align: center;
    font-family: "Montserrat", serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-flex;
    height: 22px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: #FFF;
}

.original-price{
    color: #9F8B8B;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-family: "Montserrat", sans-serif;
    line-height: normal;
    text-decoration: line-through 2px;
    -webkit-text-decoration-line: line-through 2px;
}

.promo-price{
    color: #F8667F;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.pricing-container .container .row{
    margin-bottom: 30px;
    margin-top: 3px;
}

.book-container{
    margin-top: 50px;
}

.book-btn{
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    background-color: #F8667F;
}

.book-btn:hover{
    color: #fff;
    opacity: 0.85;
}

.lollipop-image img{
    position: absolute;
}

@media (max-width: 991px) {
    .font3 {
        font-size: 44px;
    }

    .pricing-content-container{
        padding-bottom: 0;
        padding-top: 12px;
    }
}

@media (max-width: 900px) {
    .font3 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .font3 {
        font-size: 28px;
    }

    .ticket-type{
        font-size: 20px;
    }

    .promo-type{
        font-size: 10px;
    }

    .early-bird-promo{
        font-size: 10px;
    }

    .age-range{
        font-size: 14px;
    }

    .original-price{
        font-size: 12px;
    }

    .promo-price{
        font-size: 18px;
    }
}

@media (min-width: 401px) {
    .ticket-type{
        font-size: 20px;
    }

    .promo-type{
        font-size: 11px;
    }

    .age-range{
        font-size: 13px;
    }

    .original-price{
        font-size: 11px;
    }

    .promo-price{
        font-size: 17px;
    }
}

@media (min-width: 501px) {
    .ticket-type{
        font-size: 26px;
    }

    .age-range{
        font-size: 15px;
    }

    .original-price{
        font-size: 14px;
    }

    .promo-price{
        font-size: 24px;
    }
}

@media (min-width: 601px) {
    .pricing-content-container{
        padding-bottom: 1px;
    }

    .ticket-type{
        font-size: 28px;
    }

    .promo-type{
        font-size: 12px;
    }

    .age-range{
        font-size: 15px;
    }

    .original-price{
        font-size: 16px;
    }

    .promo-price{
        font-size: 26px;
    }
}


@media (max-width: 300px) {
    .font3{
        font-size: 22px;
        margin-bottom: 30px;
        padding: 30px 0 0 0;
    }

    .ticket-type{
        font-size: 15px;
    }

    .early-bird-promo{
        font-size: 8px !important;
    }

    .age-range{
        font-size: 10px;
    }

    .original-price{
        font-size: 9px;
    }

    .promo-price{
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .ticket-type{
        font-size: 32px;
    }

    .age-range{
        font-size: 16px;
    }

    .early-bird-promo{
        font-size: 12px;
    }

    .original-price{
        font-size: 18px;
    }

    .promo-price{
        font-size: 32px;
    }
}

/*FAQ*/

#faq{
    background: linear-gradient(167deg, #FFACE3 0%, #FFE8F1 100%), #FFF;
    padding-top: 0;
    padding-bottom: 0;
}
.font4{
    color: #AF3247;
}

.faq-container .col-lg-6{
    margin-bottom: 20px;
}

button:focus:not(:focus-visible) {
    outline: none;
}

.view-btn{
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    background-color: #F8667F;
}

.view-btn:hover{
    color: #fff;
    opacity: 0.85;
}

/*EXPERIENCE*/
#experience{
    background: linear-gradient(180deg, #A4D2FF 0%, #C2E2FF 25.52%);
    padding-bottom: 0;
}

.font5{
    color: #0F5599;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%; /* 57.2px */
    margin-bottom: 60px;
}

.experience-content-container{
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(55px);
    height: 192px;
    padding: 28px;
    justify-content: space-between;
    flex-shrink: 0;
    align-items: center;
}

.experience-container .col-lg-4{
    margin-bottom: 30px;
}

.experience-content-container span{
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: #5f3d3d;
}

.text-image{
    width: 300px;
    background-color: red;
}

.text-image img{
    position: absolute;
    width: 20%;
    transform: translateY(-90%);
}

.donut-image{
    position: relative;
}

.donut-image img{
    position: absolute;
    transform: translate(615%, -95%);
}

@media (max-width: 991px) {
    .experience-content-container{
        transform: translateX(20%);
    }
}

@media(max-width: 600px){
    .font5{
        font-size: 28px;
    }

    .experience-content-container{
        /*width: 85%;*/
        top: 50%;
        transform: translate(9%);
    }

    .experience-content-container span{
        font-size: 16px;
    }

}
@media (max-width: 300px){
    .font5{
        font-size: 20px;
    }

    .experience-content-container span{
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .experience-content-container span{
        font-size: 18px;
    }
}

/*CONTACT*/

#contact{
    background: linear-gradient(180deg, #FEE39E 0%, #FDF6DB 100%);
    padding-bottom: 0;
    position: relative;
    z-index: 0;
}

.contact-info-container{
    z-index: 10;
    padding: 30px 30px;
    border-radius: 0 24px 24px 0;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(15px);
}

.map-container iframe{
    border-radius: 24px 0 0 24px;
}

.send-btn{
    color: #fff;
    font-family: "Montserrat", serif;
    border-radius: 50px;
    padding: 5px 25px 5px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 22px;
    display: inline-block;
    background-color: #F8667F;
}

.send-btn:hover{
    color: #fff;
    opacity: 0.85;
}

.form-label{
    color: #5F3D3D;
    font-family: "Montserrat", sans-serif;
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.form-control{
    font-family: "Montserrat", sans-serif !important;
    color: #5F3D3D;
}

.form-control:focus{
    color: #5f3d3d;
}

.chocolate-image{
    position: relative;
}

.chocolate-image img{
    position: absolute;
    width: 8%;
    transform: translate(0%, -70%);
    z-index: -1;
}

.location-links{
    position: absolute;
}

.location-links img{
    width: 50px;
    transform: translate(30%, -900%);
}

.form-control:focus{
    outline: none !important;
    box-shadow: none;
    border: var(--bs-border-width) solid var(--bs-border-color);
}

.links{
    color: #F8667F;
    text-decoration: underline 2px;
}

.links:hover{
    color: #F8667F;
}

.font6{
    color: #000;
    font-size: 36px;
}

input.error{
    background: #FFF !important;
    border: 1px #DE0000 solid !important;
}

textarea.error{
    border: 1px #DE0000 solid;
}

#name-error, #phone-error, #email-error, #message-error{
    display: none !important;
}

.asterisk{
    color: #DE0000;
    margin-left: 5px;
    font-family: "Montserrat", sans-serif;
}

.book-now-btn:hover{
    color: #FFF;
    opacity: 0.85;
}
@media (max-width: 991px) {
    .map-container iframe{
        border-radius: 0;
        height: 150%;
    }

    .contact-info-container{
        border-radius: 24px;
        margin-top: 120px;
        margin-bottom: 50px;
        width: 90%;
    }

    .location-links img{
        width: 30px;
        transform: translate(30%, -550%);
    }
}

@media (min-width: 992px) {
    .map-container iframe{
        height: 100%;
    }
}

@media (max-width: 300px) {
    .form-label{
        font-size: 16px;
    }

    .info-text{
        font-size: 15px;
    }
}

/*BOOK*/

#book{
    background: linear-gradient(180deg, #A4D2FF 0%, #C2E2FF 25.52%);
    padding-top: 0;
}

.booking-container img{
    width: 100%;
    height: 60%;
}

.booking-container{
    position: relative;
    text-align: center;
    margin-top: 150px;
}

.centered-text{
    position: absolute;
    top: 50%;
    margin: auto 0;
    z-index: 99;
    font-size: 54px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    width: 100%;
    transform: translate(0%, -70%);
}

.centered-text span{
    color: #000;
    font-weight: 900;
}

.black-wave{
    position: absolute;
    transform: translate(0%, -45%);
}

.book-now-btn{
    background-color: #000;
    color: #FFFFFF;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 26px;
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
}

@media(max-width: 1200px){
    .centered-text{
        font-size: 44px;
    }

    .book-now-btn{
        padding: 10px 26px;
        font-size: 24px;
    }

    #book{
        padding-bottom: 0;
    }
}



@media (max-width: 991px) {
    #book{
        padding-bottom: 0px;
    }

    .booking-container{
        margin-top: 0;
    }

    .centered-text {
        font-size: 34px;
    }

    .book-now-btn{
        padding: 10px 24px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    #book{
        padding-bottom: 0px;
    }

    .centered-text{
        font-size: 14px;
    }

    .book-now-btn{
        padding: 8px 18px;
        font-size: 10px;
    }
}

@media (min-width: 400px) and (max-width: 499px) {
    .centered-text{
        font-size: 19px;
    }

    .book-now-btn{
        padding: 10px 26px;
        font-size: 10px;
    }
}

@media (min-width: 500px) and (max-width: 599px) {
    .centered-text{
        font-size: 20px;
    }

    .book-now-btn{
        padding: 10px 28px;
        font-size: 11px;
    }
}

@media (min-width: 600px) and (max-width: 699px){
    .centered-text{
        font-size: 22px;
    }

    .book-now-btn{
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (min-width: 700px) and (max-width: 799px) {
    .centered-text{
        font-size: 32px;
    }

    .book-now-btn{
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (min-width: 800px) and (min-width: 899px){
    .centered-text{
        font-size: 32px;
    }

    .book-now-btn{
        padding: 10px 24px;
        font-size: 16px;
    }
}

@media (min-width: 900px) and (max-width: 991px) {
    .centered-text{
        font-size: 34px;
    }

    .book-now-btn{
        padding: 10px 24px;
        font-size: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .centered-text{
        font-size: 44px;
    }

    .book-now-btn{
        padding: 10px 24px;
        font-size: 22px;
    }
}

@media (min-width: 1201px) {
    .centered-text{
        font-size: 54px;
    }

    .book-now-btn{
        padding: 10px 24px;
        font-size: 24px;
    }
}

@media (max-width: 300px){
    #book{
        padding-bottom: 0px;
    }

    .centered-text{
        font-size: 12px;
    }

    .book-now-btn{
        padding: 6px 16px;
        font-size: 10px;
    }
}



@media (max-width: 900px) {
    .date,
    .location-container span{
        font-size: 30px;
    }

    .date-suffix{
        font-size: 12px;
    }

    #event-date .date-range .hyphen{
        margin: 0 10px;
    }

    .date-range span img{
        width: 10%;
    }

    #event-date{
        padding-top: 30px !important;
    }

    .location-container{
        width: 92%;
        padding: 16px 0 18px 0;
    }

    #candy-container img{
        width: 15%;
        transform: translate(-50%, -10%);
    }

    #donut-container img{
        width: 13%;
    }

    .left-clouds img{
        width: 50%;
    }

    .left-clouds img:first-child{
        transform: translate(0%, -5%);
    }

    .left-clouds img:nth-child(2){
        transform: translate(20%, -95%);
    }
}

@media (max-width: 600px) {
    .date{
        font-size: 18px;
    }

    .date-suffix{
        font-size: 10px;
    }

    #event-date .date-range .hyphen{
        margin: 0 5px;
    }

    .date-range span img{
        width: 10%;
    }

    #event-date{
        padding-top: 30px !important;
    }

    .location-container{
        width: 90%;
        border-width: 2px;
        padding: 8px 0 10px 0;
    }

    .location-container span{
        font-size: 16px;
    }

    #candy-container img{
        width: 15%;
    }

    #donut-container img{
        width: 13%;
        transform: translate(-50%, 15%);
    }

    .left-clouds img{
        width: 45%;
    }

    .left-clouds img:first-child{
        transform: translate(0%, -10%);
    }

    .left-clouds img:nth-child(2){
        transform: translate(-80%, 35%);
    }
}

@media (min-width: 360px) and (max-width: 429px) {
    .date,
    .location-container span{
        font-size: 20px;
    }

    .date-suffix{
        font-size: 17px;
    }
}

@media (min-width: 430px) and (max-width: 469px){
    .date,
    .location-container span{
        font-size: 22px;
    }

    .date-suffix{
        font-size: 18px;
    }
}

@media (min-width: 470px) and (max-width: 499px) {
    #event-date .date-range span,
    .location-container span{
        font-size: 24px;
    }
}

@media (min-width: 500px) and (max-width: 549px) {
    .date,
    .location-container span{
        font-size: 26px;
    }

    .date-suffix{
        font-size: 19px;
    }

    .location-container{
        width: 90%;
        padding: 10px 0 12px 0;
    }

    #candy-container img{
        transform: translate(-50%, -10%);
    }

    #donut-container img{
        transform: translate(-50%, 10%);
    }
}


@media (min-width: 550px) and (max-width: 767px) {
   .date,
    .location-container span{
        font-size: 28px;
    }

    .date-suffix{
        font-size: 20px;
    }

    .location-container{
        width: 90%;
        padding: 12px 0 14px 0;
    }

    #candy-container img{
        transform: translate(-50%, -10%);
    }

    #donut-container img{
        transform: translate(-50%, 10%);
    }
}

@media (max-width: 300px) {
    #header.header-scrolled{
        background: none;
        border: none;
    }

    #hero{
        padding-top: 90px;
    }

    .left-clouds img{
        width: 40%;
    }

    .left-clouds img:first-child{
        transform: translate(0%, 30%);
    }

    .left-clouds img:nth-child(2){
        transform: translate(-80%, 100%);
    }

    #event-date .date-range span{
        font-family: "American Captain", sans-serif;
        font-size: 16px;
        color: #5F3D3D;
    }

    .date-suffix{
        font-size: 12px;
    }

    #event-date .date-range .hyphen{
        margin: 0 5px;
    }

    .date-range span img{
        width: 10%;
    }

    #event-date{
        padding-top: 30px !important;
    }

    .location-container{
        width: 95%;
        border-width: 2px;
        padding: 8px 0 10px 0;
    }

    .location-container span{
        font-size: 15px;
    }

    #candy-container img{
        width: 15%;
    }

    #donut-container img{
        width: 13%;
        transform: translate(-50%, 15%);
    }
}

@media (min-width: 768px) and (max-width: 799px) {
    .date,
    .location-container span{
        font-size: 32px;
    }

    .date-suffix{
        font-size: 28px;
    }

    #candy-container img{
        width: 12%;
        transform: translate(-50%, -10%);
    }

    #donut-container img{
        width: 11%;
    }

    .location-container{
        width: 85%;
    }
}

@media (min-width: 800px) and (max-width: 991px) {
    .date,
    .location-container span{
        font-size: 34px;
    }

    .date-suffix{
        font-size: 25px;
    }
}

@media(min-width: 992px) and (max-width: 1199px) {
    .date,
    .location-container span{
        font-size: 44px;
    }

    .date-suffix{
        font-size: 29px;
    }

    .location-container{
        width: 70%;
        padding: 18px 0 20px 0;
    }

    #candy-container img{
        width: 10%;
        transform: translate(-50%, -5%);
    }

    #donut-container img{
        width: 9%;
    }
}

@media (min-width: 1200px) {
    .date{
        font-size: 54px;
    }

    .date-suffix{
        font-size: 30px;
    }

    .location-container span{
        font-size: 44px;
    }

    .location-container{
        width: 65%;
        padding: 20px 0 22px 0;
    }

    #candy-container img{
        width: 10%;
        transform: translate(-50%, -5%);
    }

    #donut-container img{
        width: 9%;
    }
}

@media (max-width: 991px) {
    .title-font, .sponsor-container .logo-text{
        font-size: 44px;
    }

    .content-container span:first-child{
        font-size: 26px;
    }

    .ie-content-container{
        margin-top: 100px;
    }

    .zone-content-container{
        margin-top: 90px;
        margin-bottom: 50px;
    }
}

@media (max-width: 900px) {
    .title-font, .sponsor-container .logo-text{
        font-size: 36px;
    }
    .content-container span:first-child{
        font-size: 24px;
    }

    .explore-desc{
        font-size: 22px;
    }

    .content-container .content-desc{
        font-size: 18px;
    }

    .explore-activity-container .container:nth-child(2){
        padding-top: 0;
    }

    .ie-content-container{
        margin-top: 100px;
    }

    .zone-content-container{
        margin-top: 90px;
        margin-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .title-font, .sponsor-container .logo-text{
        font-size: 10vw;
        font-weight: 500;
        letter-spacing: 0.2vw;
    }

    .content-container span:first-child{
        font-size: 22px;
    }

    .explore-desc{
        font-size: 20px;
    }

    .content-container .content-desc{
        font-size: 16px;
    }

    .explore-activity-container .container:nth-child(2){
        padding-top: 0;
    }

    .ie-content-container{
        margin-top: 150px;
    }

    .zone-content-container{
        margin-top: 120px;
        margin-bottom: 50px;
    }
}

@media (max-width: 300px) {
    .title-font, .sponsor-container .logo-text{
        font-size: 20px;
    }

    .explore-desc{
        font-size: 16px;
    }

    .explore-activity-container .container:nth-child(2){
        padding-top: 0;
    }

    .content-container span:first-child{
        font-size: 20px;
    }

    .content-container .content-desc{
        font-size: 14px;
    }

    .ie-content-container{
        margin-top: 150px;
    }

    .zone-content-container{
        margin-top: 90px;
        margin-bottom: 50px;
    }
}

@media (max-width: 899px){
    .buy-ticket-btn{
        display: none;
    }
}

/* Responsive Version Control - Screen Size Based */
/* Desktop: 1024px and above */
@media (min-width: 1024px) {
    .mobile-version,
    .tablet-version {
        display: none !important;
    }
    .desktop-version {
        display: block !important;
    }
}

/* Tablet: 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .desktop-version,
    .mobile-version {
        display: none !important;
    }
    .tablet-version {
        display: block !important;
    }
}

/* Mobile: Below 768px */
@media (max-width: 767px) {
    .desktop-version,
    .tablet-version {
        display: none !important;
    }
    .mobile-version {
        display: block !important;
    }
}

/* Mobile Hero Section - 3 Section Layout */
.hero-mobile {
    background: #000000 !important;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-mobile .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.hero-mobile::before {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 1px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.10) 1px, transparent 2px),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 2px);
    opacity: 0.8;
}

/* Section 1: Mascot Background Image */
.gc-hero-mascot-section {
    flex: 1;
    min-height: 50vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.gc-hero-mascot-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Section 2: Text Content with CTA */
.gc-hero-text-section {
    /* padding: 40px 30px; */
    text-align: center;
    position: relative;
    z-index: 1;
    background: #000000;
}

.gc-hero-title-mobile img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.gc-hero-subtitle-mobile {
    color: #D4AF37;
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "American Captain", sans-serif;
    font-size: 9vw;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.2vw;
    margin-bottom: 14px;
}

.gc-hero-subtitle-mobile span{
    font-family: "American Captain", sans-serif;
    font-size: 4vw;
    display: block;
    line-height: 1.05;
    margin-top: -0.15em;
}

.gc-hero-venue-mobile, .gc-hero-venue-mobile span{
    color: #ffffff;
    font-family: "American Captain", sans-serif;
    font-size: 5.5vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
    margin: 24px 0;
    line-height: 1.05;
}

.gc-hero-meta-mobile {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 4vw !important;
    font-weight: 500;
    letter-spacing: 0.2vw;
    /* margin-bottom: 30px; */
}

/* CTA Buttons inside text section */
.gc-hero-cta-section {
    display: flex;
    /* flex-direction: column; */
    gap: 14px;
    /* margin-top: 30px; */
    padding: 0px 20px;
}

/* Section 3: Image Background Only */
.gc-hero-image-section {
    flex: 1;
    min-height: 20vh;
    background-image: url('../img/hero-bg-mobile-bot.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

.gc-hero-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.gc-hero-btn-primary-mobile {
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    color: #0b0b0b;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gc-hero-btn-primary-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #0b0b0b;
}

.gc-hero-btn-outline-mobile {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.9);
}

.gc-hero-btn-outline-mobile:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments for mobile hero */
@media (max-width: 375px) {
    .gc-hero-mascot-mobile {
        max-width: 240px;
    }
    
    .gc-hero-title-mobile img {
        max-width: 280px;
    }
    
    .gc-hero-btn-mobile {
        font-size: 4vw;
        padding: 10px 8px;
    }
}

@media (min-width: 376px) and (max-width: 480px) {
    .gc-hero-mascot-mobile {
        max-width: 300px;
    }
    
    .gc-hero-title-mobile img {
        max-width: 340px;
    }
}

@media (min-width: 481px) {
    .gc-hero-mascot-mobile {
        max-width: 320px;
    }
    
    .gc-hero-title-mobile img {
        max-width: 380px;
    }
    
    .gc-hero-btn-mobile {
        padding: 20px;
    }
}

/* Tablet Hero Section - Optimized for 768px-1023px */
.hero-tablet {
    background: #000000 !important;
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-tablet .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gc-hero-tablet-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gc-hero-tablet-mascot {
    flex: 1;
    min-height: 35vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

.gc-hero-tablet-content {
    padding: 40px 60px;
    text-align: center;
    background: #000000;
    position: relative;
    z-index: 1;
}

.gc-hero-title-tablet {
    margin-bottom: 24px;
}

.gc-hero-title-tablet img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.gc-hero-subtitle-tablet {
    color: #D4AF37;
    font-family: "American Captain", sans-serif;
    font-size: 5vw;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.2vw;
    margin-bottom: 20px;
}

.gc-hero-meta-tablet {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Montserrat", sans-serif;
    font-size: 2.5vw;
    font-weight: 500;
    letter-spacing: 0.2vw;
    margin-bottom: 30px;
}

.gc-hero-cta-tablet {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.gc-hero-btn-tablet {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.gc-hero-btn-primary-tablet {
    background: linear-gradient(90deg, #FFDE6E 0%, #D29E30 100%);
    color: #0b0b0b;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gc-hero-btn-primary-tablet:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #0b0b0b;
}

.gc-hero-btn-outline-tablet {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(212, 175, 55, 0.9);
}

.gc-hero-btn-outline-tablet:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    color: #ffffff;
    transform: translateY(-2px);
}

.gc-hero-tablet-bottom {
    flex: 1;
    min-height: 25vh;
    background-image: url('../img/hero-bg-mobile-bot.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}
